home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / other / mesa / mesa-tk / samples.tk / accum.c < prev    next >
C/C++ Source or Header  |  2000-02-23  |  4KB  |  162 lines

  1. /*
  2.  * Copyright (c) 1991, 1992, 1993 Silicon Graphics, Inc.
  3.  *
  4.  * Permission to use, copy, modify, distribute, and sell this software and
  5.  * its documentation for any purpose is hereby granted without fee, provided
  6.  * that (i) the above copyright notices and this permission notice appear in
  7.  * all copies of the software and related documentation, and (ii) the name of
  8.  * Silicon Graphics may not be used in any advertising or
  9.  * publicity relating to the software without the specific, prior written
  10.  * permission of Silicon Graphics.
  11.  *
  12.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF
  13.  * ANY KIND,
  14.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
  15.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  16.  *
  17.  * IN NO EVENT SHALL SILICON GRAPHICS BE LIABLE FOR
  18.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  19.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
  21.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  22.  * OF THIS SOFTWARE.
  23.  */
  24. #include <stdio.h>
  25. #include <string.h>
  26. #include <unistd.h>
  27. #include <stdlib.h>
  28. #include "gltk.h"
  29.  
  30. GLenum doubleBuffer, directRender;
  31. GLint thing1, thing2;
  32.  
  33. static void Init(void)
  34. {
  35.  
  36.   glClearColor(0.0, 0.0, 0.0, 0.0);
  37.   glClearAccum(0.0, 0.0, 0.0, 0.0);
  38.  
  39.   thing1 = glGenLists(1);
  40.   glNewList(thing1, GL_COMPILE);
  41.   glColor3f(1.0, 0.0, 0.0);
  42.   glRectf(-1.0, -1.0, 1.0, 0.0);
  43.   glEndList();
  44.  
  45.   thing2 = glGenLists(1);
  46.   glNewList(thing2, GL_COMPILE);
  47.   glColor3f(0.0, 1.0, 0.0);
  48.   glRectf(0.0, -1.0, 1.0, 1.0);
  49.   glEndList();
  50. }
  51.  
  52. static void Reshape(int width, int height)
  53. {
  54.  
  55.   glViewport(0, 0, (GLint) width, (GLint) height);
  56.  
  57.   glMatrixMode(GL_PROJECTION);
  58.   glLoadIdentity();
  59.   glMatrixMode(GL_MODELVIEW);
  60.   glLoadIdentity();
  61. }
  62.  
  63. static GLenum Key(int key, GLenum mask)
  64. {
  65.  
  66.   switch (key) {
  67.     case TK_ESCAPE:
  68.       tkQuit();
  69.     case TK_1:
  70.       glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
  71.       break;
  72.     case TK_2:
  73.       glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
  74.       break;
  75.     default:
  76.       return GL_FALSE;
  77.   }
  78.   return GL_TRUE;
  79. }
  80.  
  81. static void Draw(void)
  82. {
  83.  
  84.   glPushMatrix();
  85.  
  86.   glScalef(0.8, 0.8, 1.0);
  87.  
  88.   glClear(GL_COLOR_BUFFER_BIT);
  89.   glCallList(thing1);
  90.   glAccum(GL_LOAD, 0.5);
  91.  
  92.   glClear(GL_COLOR_BUFFER_BIT);
  93.   glCallList(thing2);
  94.   glAccum(GL_ACCUM, 0.5);
  95.  
  96.   glAccum(GL_RETURN, 1.0);
  97.  
  98.   glPopMatrix();
  99.  
  100.   glFlush();
  101.  
  102.   if (doubleBuffer) {
  103.     tkSwapBuffers();
  104.   }
  105. }
  106.  
  107. static GLenum Args(int argc, char **argv)
  108. {
  109.   GLint i;
  110.  
  111.   doubleBuffer = GL_FALSE;
  112.   directRender = GL_TRUE;
  113.  
  114.   for (i = 1; i < argc; i++) {
  115.     if (strcmp(argv[i], "-sb") == 0) {
  116.       doubleBuffer = GL_FALSE;
  117.     }
  118.     else if (strcmp(argv[i], "-db") == 0) {
  119.       doubleBuffer = GL_TRUE;
  120.     }
  121.     else if (strcmp(argv[i], "-dr") == 0) {
  122.       directRender = GL_TRUE;
  123.     }
  124.     else if (strcmp(argv[i], "-ir") == 0) {
  125.       directRender = GL_FALSE;
  126.     }
  127.     else {
  128.       printf("%s (Bad option).\n", argv[i]);
  129.       return GL_FALSE;
  130.     }
  131.   }
  132.   return GL_TRUE;
  133. }
  134.  
  135. void main(int argc, char **argv)
  136. {
  137.   GLenum type;
  138.  
  139.   if (Args(argc, argv) == GL_FALSE) {
  140.     tkQuit();
  141.   }
  142.  
  143.   tkInitPosition(0, 0, 300, 300);
  144.  
  145.   type = TK_RGB | TK_ACCUM;
  146.   type |= (doubleBuffer) ? TK_DOUBLE : TK_SINGLE;
  147.   type |= (directRender) ? TK_DIRECT : TK_INDIRECT;
  148.   tkInitDisplayMode(type);
  149.  
  150.   if (tkInitWindow("Accum Test") == GL_FALSE) {
  151.     tkQuit();
  152.   }
  153.  
  154.   Init();
  155.  
  156.   tkExposeFunc(Reshape);
  157.   tkReshapeFunc(Reshape);
  158.   tkKeyDownFunc(Key);
  159.   tkDisplayFunc(Draw);
  160.   tkExec();
  161. }
  162.